home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
SYS
/
s
/
NextError1.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-09-26
|
307b
|
21 lines
/* REXX scrip to advance to next error */
address "SC_SCMSG"
'NEXT'
options results
'FILE'
file = result
'LINE'
line = result
'TEXT'
text = result
options
address SKOED1
if file = "" then
"Msg(No more errors)"
else do
"Load_File("||file||" NODUP)"
"Goto_Line("||line||")"
"Msg("||text||")"
end